home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / shadez.swf / scripts / Local / Game / Thing / CEffectExplosionSmall.as < prev    next >
Encoding:
Text File  |  2011-08-19  |  388 b   |  15 lines

  1. package Local.Game.Thing
  2. {
  3.    import Local.Game.World.CPosition;
  4.    
  5.    public class CEffectExplosionSmall extends CEffectExplosion
  6.    {
  7.        
  8.       
  9.       public function CEffectExplosionSmall(param1:CPosition, param2:Number = 100, param3:int = -1)
  10.       {
  11.          super("explosionsmall",param1,0.5,param2,param3 == -1 ? int(Math.random() * 3) : param3);
  12.       }
  13.    }
  14. }
  15.